home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROCS.ZIP / IVALUE.ICN < prev    next >
Text File  |  1992-11-24  |  569b  |  27 lines

  1. ############################################################################
  2. #
  3. #    File:     ivalue.icn
  4. #
  5. #    Subject:  Procedures to convert string to Icon value
  6. #
  7. #    Author:   Ralph E. Griswold
  8. #
  9. #    Date:     November 24, 1992
  10. #
  11. ###########################################################################
  12.  
  13. link escape
  14.  
  15. procedure ivalue(s)
  16.  
  17.    return (
  18.       2(s == "", &null) |
  19.       numeric(s) | {
  20.          s ? {
  21.             2(="\"", escape(tab(-1)), ="\"") |
  22.             2(="'", cset(escape(tab(-1))), ="'")
  23.             }
  24.          }
  25.       )
  26. end
  27.